41. Quiz: NOT
Questions using the NOT operator
We can pull all of the rows that were excluded from the queries in the previous two concepts with our new operator.
- Use the accounts table to find the account name, primary poc, and sales rep id for all stores except Walmart, Target, and Nordstrom.
- Use the web_events table to find all information regarding individuals who were contacted via any method except using
organic
oradwords
methods.
Use the accounts table to find:
- All the companies whose names do not start with 'C'.
- All companies whose names do not contain the string 'one' somewhere in the name.
- All companies whose names do not end with 's'.
Code
If you need a code on the https://github.com/udacity.